The Solution: Method Inlining
Inlining can often eliminate method dispatch overhead
In C, function calls have only one function they
can call
For object-oriented languages inlining is much harder, because of method dispatch
The easy solution, inlining as much as possible, can produce large space and performance problems

Return to Tracks